@font-face {
    font-family: "HanyiSentyGoldenBell";
    src: url("font_style/HanyiSentyGoldenBell.woff") format("woff"),
        url("font_style/HanyiSentyGoldenBell.woff2") format("woff2");
}

body {
    align-items: center;
    background-color: black;
    background-attachment: fixed;
    background-image: url("background/background.jpg");
    background-position: center 75%;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    width: auto;
}

h1 {
    font-size: 400%;
    font-family: "HanyiSentyGoldenBell";
    text-shadow: 0.5px 0.5px 1px white;
    position: fixed;
    top: 10%;
    text-align: center;
    margin: auto;
    left: 30%;
    right: 30%;
}

.container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 10px;
}

.container1 {
    position: absolute;
    height: 100%;
    width: 50%;
    left: 50%;
    z-index: 1;
}

.container2 {
    position: absolute;
    height: 100%;
    width: 50%;
    z-index: 1;
}

.wild_boar {
    position: relative;
    top: 35%;
    left: 15%;
    height: auto;
    width: 60%;
    transform: none;
    transition-duration: 0.5s;
    animation-name: rotate;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-play-state: running;
    z-index: 1;
}

.wild_boar:hover {
    transform: scale(1.5, 1.5);
    transition-duration: 1s;
}

.arrow {
    position: relative;
    left: 25%;
    top: 35%;
    height: auto;
    width: 60%;
    animation-name: move;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate;
    animation-play-state: running;
}

@keyframes move {
    from {
        left: 15%
    }

    to {
        left: 40%;
    }
}

@keyframes rotate {
    from {
        rotate: -10deg;
    }

    to {
        rotate: 10deg;
    }
}

footer {
    position: fixed;
    font-size: x-small;
    bottom: 2.5%;
    color: white;
    text-align: center;
    margin: auto;
    left: 25%;
    right: 25%;
    z-index: -1;
}